home *** CD-ROM | disk | FTP | other *** search
/ CD Exchange / CD Exchange - Volume 1.iso / graphics / utils / amiflick / amiflick.doc < prev   
Text File  |  1993-11-21  |  5KB  |  116 lines

  1.                               AmiFlick v1.08
  2.                         An FLI player for the Amiga
  3.                             ©1993 Garrick Meeker
  4.  
  5.    This program is hereby placed in the public domain.  You may freely
  6. distribute it as long no more than a nominal fee for time and copying costs
  7. is charged.  This document must be included with the program.  I assume
  8. no reponsibilities for the behavior of this program.
  9.  
  10.    Have you ever wanted to use your Amiga to handle all those zillions
  11. of FLI files for PeeCee's?  Well, now there's AmiFlick.  It can play FLI's
  12. or write them to disk as a bunch of IFF's.  It can also handle the newer
  13. format of FLI's (sometimes called FLC's).  AmiFlick requires at least
  14. AmigaDOS 1.2 (I might make it requires 2.0 in the future).  A version for
  15. accelerated computers is not included because at the moment most of the
  16. work is done in OS calls, so it wouldn't be any faster.
  17.  
  18. Usage: AmiFlick [-v] [-d<delay>] [-c] [-h] [-g]
  19.                 [-m<mode>] [-s] [-l] [-b] file [outfile]
  20.  -v         Verbose file information
  21.  -d<delay>  Delay between frames in 1/70s of a second
  22.  -c         Color mode (requires AGA)
  23.  -h         HAM mode
  24.  -g         256 shade grey mode (requires AGA)
  25.  -m<mode>   Screen mode to use
  26.  -s         Scan file only
  27.  -l         Load file into memory before playing
  28.  -b         Double buffer playback
  29. 16 shade grey mode is the default
  30.    The FLI file may be specified without the '.FLI' or '.FLC'
  31. extension.
  32.    If outfile is specified, a series of 256 color ILBM's are written
  33. in the form outfile.nnn or outfile.nnnnn, depending on how many
  34. frames are in the file.
  35.  
  36.    To write the frames as a bunch of pictures just type:
  37.  
  38. AmiFlick file outfile
  39.  
  40.    Where 'file' is the FLI and outfile is the basename for the 256 color
  41. IFF pictures.
  42.  
  43.    'AmiFlick -s file' will just display info about the file, like how
  44. many frames there are.
  45.  
  46.    For playback, just type 'AmiFlick file'.  This will give you a 16 shade
  47. grey scale display.  During playback, you can use these keys:
  48.         ESC          Exits the animation.
  49.         Left Arrow   Slows down playback.
  50.         Right Arrow  Speeds up playback.
  51.         Space Bar    Pauses playback or steps forward a frame.
  52.         Return       Resumes playback.
  53.    If the screen is bigger than the display you can autoscroll with the
  54. mouse under 2.0 and greater.  The other display modes available are:
  55.         '-g'   256 shade grey scale.  Requires AGA.
  56.         '-c'   Color.  This will display the file without any conversion.
  57.                Also requires AGA.
  58.         '-h'   HAM mode.  In order to speed things up this looks very blocky
  59.                and has a "rainbow" effect on text.  I might improve the
  60.                algorithm in the future.
  61.  
  62.    Some other options:
  63.         '-v'         Verbose information on the file, mainly for debugging.
  64.         '-b'         Double buffer the display.
  65.         '-l'         Load the file into RAM before playing it.
  66.         '-m<mode>'   Specifies a mode to use.  If 'mode' begins with '0x'
  67.                      or '0X' then it is assumed to be the hexdecimal value
  68.                      of the display ID.  Otherwise it is assumed to be the
  69.                      name associated with the mode, e.g. 'NTSC:Hires'
  70.                      under 2.0 or 'NTSC:High Res' under 3.0.  This name
  71.                      must match one of the names in the display database.
  72.                      The mode given should be compatible with the display
  73.                      options, i.e. pick a HAM mode when '-h' is given
  74.                      and don't when it isn't.
  75.         '-d<delay>'  Changes the delay between each frame in 1/70's of
  76.                      a second.
  77.  
  78.    Files with palette changes may look messed up unless you use either the
  79. '-g' or '-c' option.  This is because of the conversion that takes place.
  80. There isn't really anything I can do about it.  Fortunately, these files
  81. are extremely rare.
  82.  
  83. Plans for the future:
  84.    Playback is still pretty slow.  This is because of the hundreds of
  85. calls to WritePixel().  However, there are still plenty of things I can
  86. do to optimize AmiFlick.  The next release should be a good amount faster.
  87.    This is probably the last version to support AmigaDOS 1.2 and 1.3.  The
  88. next version will use different OS calls to speed things up, but these
  89. calls aren't available under 1.2 or 1.3.  So, either upgrade or live with
  90. this version.
  91.  
  92.    Some of the others things planned:
  93.         Direct writing of ANIM5 and ANIM7 files.
  94.         Writing files in one of the displayed modes instead of 256 color.
  95.         Possibly a better HAM algorithm.
  96.         Some sort of GUI.  At least a file requester and a screen mode
  97.            requester.
  98.         Possibly a separate program to write FLI animations from IFF
  99.            pictures or ANIM's.
  100.    If you want to see one of these features implemented then let me know!
  101.  
  102. History:
  103.    v1.05   Initial release
  104.    v1.10   Fixed double buffering under 3.0 and a few other bugs.
  105.            Now tries appending '.FLI' and '.FLC' to find the file.
  106.            Calls BestModeID() under 3.0 to figure out the mode, so
  107.               super hires and other modes will be used if appropriate.
  108.               This made the old '-H' flag obsolete as hires HAM will
  109.               automatically be used.
  110.            Screen mode can be specified.  No screen requester yet, though.
  111.  
  112. I can be reached by e-mail at:
  113.  
  114. gmeeker@soda.berkeley.edu
  115.  
  116.